Independent HTML5 Physics Game: Any Feedback? [closed]

Posted by mndoftea on Game Development See other posts from Game Development or by mndoftea
Published on 2012-03-31T17:57:52Z Indexed on 2012/03/31 23:44 UTC
Read the original article Hit count: 197

Filed under:
|
|

I've been independently developing a physics-based HTML5 game. I haven't used any libraries or engines; all the code, including the physics, is my own. It is free for a while on the Chrome Web Store and I was hoping that I could get some feedback on it. You can get it for Chrome here: https://chrome.google.com/webstore/detail/dbnmkpcomailjochphnmfklofkmgenci. I know this is not a normal question, but I'm happy for answers to be abstracted/generalized for broader use. Im asking here because I don't know anyone else personally who does this stuff. Any thoughts, comments or ideas you might have would be greatly appreciated!

The physics system is written in JavaScript and works by setting up the differential equations of motion (plus a few conditions) and evaluating them numerically using the Euler method. The graphics are done through the HTML5 canvas and the music is done through the audio element. (Said music is in the public domain by the way). You can see the code by going to VIew>View Source in Chrome.

© Game Development or respective owner

Related posts about physics

Related posts about JavaScript